home *** CD-ROM | disk | FTP | other *** search
- /*
- File: CMVers.h
-
- Contains: Container Manager Version and Copyright Definitions
-
- Written by: Ira L. Ruben
-
- Owned by: Ed Lai
-
- Copyright: © 1992 - 1996 by Apple Computer, Inc., all rights reserved.
-
- Change History (most recent first):
-
- <2> 1/15/96 TJ Cleaned Up
- <2> 8/26/94 EL #1181622 Ownership update.
- <2> 5/9/94 MB #1162181: Changes necessary to install MMM.
- <1> 2/3/94 EL first checked in
-
- To Do:
- */
-
- /*---------------------------------------------------------------------------*
- | |
- | <<< CMVers.h >>> |
- | |
- | Container Manager Version and Copyright Definitions |
- | |
- | Ira L. Ruben |
- | 4/15/92 |
- | |
- | Copyright Apple Computer, Inc. 1992-1994 |
- | All rights reserved. |
- | |
- *---------------------------------------------------------------------------*
-
- This file sole goal in life is to define the Container Manager version and copyright
- strings.
-
- Note, the copyright string is used in CMSesOps.c by a routine called from
- CMStartSession(). The name of that routine is the copyright string with underscores in
- place of spaces. This comes from a macro also defined here.
-
- The version string defines the current version of the Container Manager so we can tell
- what versions go with what versions of the specification and for bug reporting. The
- version string is placed in the global session data.
- */
-
- #ifndef __CMVERSION__
- #define __CMVERSION__
-
- #ifndef CMVersion
- #define CMVersion "<<< 1.0d4.2 >>>"
- #endif
- /*
- This version number should agree with the current spec so we know who goes with what!
- Currently this must be manually changed.
- */
-
-
- #define Copyright "Copyright Apple Computer, Inc. 1991-1994. " \
- "All rights reserved. " \
- "By Ira L. Ruben."
-
- #define Copyright_Apple_Computer Copyright_Apple_Computer_Inc_1991_1994_All_rights_reserved
- /*
- This is the copyright notice needed to make Apple lawers happy. The first macro is used
- in a call to a routine named by the second macro. That will have the effect of embedding
- the string into the code (as data and a routine name) and keeping it from being dead code
- stripped (at least on linkers smart enough to do such things). You sould always keep
- both strings in parallel.
- */
-
- #endif
-